.price-toast{

    position:fixed;

    right:25px;

    bottom:25px;

    width:360px;

    background:#fff;

    border-radius:10px;

    box-shadow:0 10px 35px rgba(0,0,0,.18);

    border-left:5px solid #b89a6d;

    padding:20px;

    display:flex;

    gap:15px;

    z-index:99999;

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.4s;
}

.price-toast.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.toast-icon{

    font-size:26px;

    line-height:1;
}

.toast-content strong{

    display:block;

    margin-bottom:8px;

    color:#333;

}

.toast-content p{

    margin:0;

    color:#666;

    line-height:1.6;

    font-size:14px;
}

.toast-close{

    position:absolute;

    right:12px;

    top:10px;

    background:none;

    border:none;

    font-size:20px;

    cursor:pointer;

    color:#888;
}

.toast-close:hover{

    color:#000;
}

@media(max-width:768px){

.price-toast{

    width:calc(100% - 30px);

    left:15px;

    right:15px;

    bottom:15px;

}

}
.sticky-price-banner{
    position:sticky;
    top:0;
    z-index:9999;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    padding:15px 25px;

    background:linear-gradient(90deg,#b89a6d,#d9bf93,#b89a6d);
    color:#fff;
    font-size:15px;
    font-weight:500;
    letter-spacing:.2px;

    box-shadow:0 5px 18px rgba(0,0,0,.15);
}

.sticky-price-banner strong{
    color:#fff;
    font-weight:700;
}

.sticky-price-banner .icon{
    font-size:18px;
}
@keyframes bannerGlow{
    0%,100%{
        box-shadow:0 5px 18px rgba(0,0,0,.12);
    }
    50%{
        box-shadow:0 5px 22px rgba(184,154,109,.45);
    }
}

.sticky-price-banner{
    animation:bannerGlow 3s ease-in-out infinite;
}
.booking-info-wrapper{

    margin:35px 0 45px;

}


/* Üst Bilgi Kutusu */
/* =====================================
   ELBIS HOTEL - BOOKING INFO SECTION
===================================== */

.booking-info-wrapper{

    width:100%;
    max-width:1100px;
    margin:35px auto 45px;
    box-sizing:border-box;

}


/* =====================================
   ORTAK BOX TASARIMI
===================================== */

.booking-info-box,
.booking-details,
.booking-security{

    width:100%;
    box-sizing:border-box;

    background:linear-gradient(
        180deg,
        #fcfbf8 0%,
        #f7f3ec 100%
    );

    border:1px solid #d8c9b0;
    border-left:3px solid #b89a6d;
    border-radius:8px;

    box-shadow:0 4px 14px rgba(0,0,0,.04);

    margin-bottom:16px;

}


/* =====================================
   ÜST BİLGİ KUTUSU
===================================== */

.booking-info-box{

    padding:22px 24px;

}


/* =====================================
   GÜVENLİ REZERVASYON
===================================== */

.booking-security{

    padding:22px 24px;

}


/* =====================================
   BAŞLIKLAR
===================================== */

.booking-info-content h3,
.booking-details summary,
.booking-security h4{

    display:flex;
    align-items:center;
    gap:10px;

    margin:0;

    color:#2f2f2f;
    font-family:inherit;
    font-size:18px;
    font-weight:600;
    line-height:1.5;
    letter-spacing:.1px;

}


/* =====================================
   ICONLAR
===================================== */

.booking-info-content h3 i,
.booking-details summary i,
.booking-security h4 i{

    color:#b89a6d;
    font-size:17px;
    width:20px;
    text-align:center;
    flex-shrink:0;

}


/* =====================================
   PARAGRAFLAR
===================================== */

.booking-info-content p,
.booking-details-content p,
.booking-security p{

    margin:10px 0 0;
    color:#666;
    font-size:14px;
    line-height:1.8;

}


/* =====================================
   ACCORDION
===================================== */

.booking-details{

    overflow:hidden;

}

.booking-details summary{

    cursor:pointer;
    list-style:none;

    padding:20px 24px;

    position:relative;

}

.booking-details summary::-webkit-details-marker{

    display:none;

}

.booking-details summary::after{

    content:"+";

    position:absolute;

    right:24px;
    top:50%;

    transform:translateY(-50%);

    color:#b89a6d;

    font-size:24px;
    font-weight:300;

}

.booking-details[open] summary::after{

    content:"−";

}

.booking-details summary:hover{

    background:rgba(184,154,109,.05);

}

.booking-details-content{

    padding:0 24px 20px;

    border-top:1px solid rgba(184,154,109,.25);

}


/* =====================================
   HOVER
===================================== */

.booking-info-box:hover,
.booking-details:hover,
.booking-security:hover{

    box-shadow:0 8px 22px rgba(0,0,0,.07);

}


/* =====================================
   MOBİL
===================================== */

@media(max-width:768px){

    .booking-info-wrapper{

        width:calc(100% - 30px);
        margin:25px auto 35px;

    }

    .booking-info-box,
    .booking-security{

        padding:18px;

    }

    .booking-info-content h3,
    .booking-details summary,
    .booking-security h4{

        font-size:17px;

    }

    .booking-details summary{

        padding:18px;

    }

    .booking-details-content{

        padding:0 18px 18px;

    }

}